aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/routes/users/[user_name].svelte
blob: fab3a9629ab92f76fa2c4bc9bf2505b580f9663d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<script lang="ts" context="module">
  function fetchJson(url: string): Promise<Response> {
    return fetch(url, {
      headers: {
        "Content-Type": "application/json",
      },
    });
  }

  export async function load({ params, fetch }) {
    const userName = params["user_name"];
    const userBotsResponse = await fetch(`/api/users/${userName}/bots`);
    return {
      props: {
        userName,
        bots: await userBotsResponse.json(),
      },
    };

    // return {
    //   status: matchDataResponse.status,
    //   error: new Error("failed to load match"),
    // };
  }
</script>

<script lang="ts">
  export let userName: string;
  export let bots: object[];
</script>

<div class="container">
  <div class="header">
    <h1 class="user-name">{userName}</h1>
  </div>
  <h2>Bots</h2>
  <ul class="bot-list">
    {#each bots as bot}
    <li class="bot">
      <span class="bot-name">{bot['name']}</span>
    </li>
    {/each}
  </ul>
</div>

<style lang="scss">
  .container {
    min-width: 600px;
    max-width: 800px;
    margin: 50px auto;
  }

  .header {
    margin-bottom: 60px;
    border-bottom: 1px solid black;
  }

  .user-name {
    margin-bottom: .5em;
  }

  .bot-list {
    list-style: none;
    padding: 0;
  }

  $border-color: #d0d7de;

  .bot {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid $border-color;
  }

  .bot-name {
    font-size: 20px;
    font-weight: 400;
  }

  .bot:first-child {
    border-top: 1px solid $border-color;
  }

</style>